Azure Maps Time Zone Service (preview:1.0)

2025/10/15 • 6 deleted methods

Timezone_GetTimezoneByID (removed)
Description The `Get Timezone By ID` API is an HTTP `GET` request that returns current, historical, and future time zone information for the specified IANA time zone ID.
Reference Link ¶

⚼ Request

GET:  /timezone/byId/{format}
{
x-ms-client-id: string ,
api-version: string ,
Accept-Language: string ,
options: string ,
timeStamp: string ,
transitionsFrom: string ,
transitionsYears: integer ,
format: string ,
query: string ,
}

⚐ Response (200)

{
Version: string ,
ReferenceUtcTimestamp: string ,
TimeZones:
[
{
Id: string ,
Aliases:
[
string ,
]
,
Countries:
[
{
Name: string ,
Code: string ,
}
,
]
,
Names:
{
ISO6391LanguageCode: string ,
Generic: string ,
Standard: string ,
Daylight: string ,
}
,
ReferenceTime:
{
Tag: string ,
StandardOffset: string ,
DaylightSavings: string ,
WallTime: string ,
PosixTzValidYear: integer ,
PosixTz: string ,
Sunrise: string ,
Sunset: string ,
}
,
RepresentativePoint:
{
Latitude: number ,
Longitude: number ,
}
,
TimeTransitions:
[
{
Tag: string ,
StandardOffset: string ,
DaylightSavings: string ,
UtcStart: string ,
UtcEnd: string ,
}
,
]
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Timezone_GetTimezoneByCoordinates (removed)
Description The `Get Timezone By Coordinates` API is an HTTP `GET` request that returns current, historical, and future time zone information for a specified latitude-longitude pair. In addition, the API provides sunset and sunrise times for a given location, with the exception of regions that observe solar days.
Reference Link ¶

⚼ Request

GET:  /timezone/byCoordinates/{format}
{
x-ms-client-id: string ,
api-version: string ,
Accept-Language: string ,
options: string ,
timeStamp: string ,
transitionsFrom: string ,
transitionsYears: integer ,
format: string ,
query: array ,
}

⚐ Response (200)

{
Version: string ,
ReferenceUtcTimestamp: string ,
TimeZones:
[
{
Id: string ,
Aliases:
[
string ,
]
,
Countries:
[
{
Name: string ,
Code: string ,
}
,
]
,
Names:
{
ISO6391LanguageCode: string ,
Generic: string ,
Standard: string ,
Daylight: string ,
}
,
ReferenceTime:
{
Tag: string ,
StandardOffset: string ,
DaylightSavings: string ,
WallTime: string ,
PosixTzValidYear: integer ,
PosixTz: string ,
Sunrise: string ,
Sunset: string ,
}
,
RepresentativePoint:
{
Latitude: number ,
Longitude: number ,
}
,
TimeTransitions:
[
{
Tag: string ,
StandardOffset: string ,
DaylightSavings: string ,
UtcStart: string ,
UtcEnd: string ,
}
,
]
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Timezone_GetTimezoneEnumWindows (removed)
Description The `Get Windows Time Zones` API is an HTTP `GET` request that returns a full list of Windows Time Zone IDs.
Reference Link ¶

⚼ Request

GET:  /timezone/enumWindows/{format}
{
x-ms-client-id: string ,
api-version: string ,
format: string ,
}

⚐ Response (200)

{
WindowsId: string ,
Territory: string ,
IanaIds:
[
string ,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Timezone_GetTimezoneEnumIANA (removed)
Description The `Get IANA Time Zones` API is an HTTP `GET` request that returns a full list of Internet Assigned Numbers Authority (IANA) time zone IDs. Updates to the IANA service are reflected in the system within one day.
Reference Link ¶

⚼ Request

GET:  /timezone/enumIana/{format}
{
x-ms-client-id: string ,
api-version: string ,
format: string ,
}

⚐ Response (200)

{
Id: string ,
IsAlias: boolean ,
AliasOf: string ,
HasZone1970Location: boolean ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Timezone_GetTimezoneIANAVersion (removed)
Description The `Get Time Zone IANA Version` API is an HTTP `GET` request that returns the current Internet Assigned Numbers Authority (IANA) version number as Metadata.
Reference Link ¶

⚼ Request

GET:  /timezone/ianaVersion/{format}
{
x-ms-client-id: string ,
api-version: string ,
format: string ,
}

⚐ Response (200)

{
Version: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Timezone_GetTimezoneWindowsToIANA (removed)
Description The `Get Windows to IANA Time Zone` API is an HTTP `GET` request that returns a corresponding Internet Assigned Numbers Authority (IANA) ID, given a valid Windows Time Zone ID. Multiple IANA IDs may be returned for a single Windows ID. It is possible to narrow these results by adding an optional territory parameter.
Reference Link ¶

⚼ Request

GET:  /timezone/windowsToIana/{format}
{
x-ms-client-id: string ,
api-version: string ,
format: string ,
query: string ,
territory: string ,
}

⚐ Response (200)

{
Id: string ,
IsAlias: boolean ,
AliasOf: string ,
HasZone1970Location: boolean ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}